-
-
Notifications
You must be signed in to change notification settings - Fork 530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install normalize.css via yarn #851
Conversation
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,7 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match(/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [93/80]
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,7 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match(/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [93/80]
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,7 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match(/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [93/80]
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,7 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match(/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [93/80]
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,9 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match( | |||
/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put a comma after the last parameter of a multiline method call.
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,9 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match( | |||
/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put a comma after the last parameter of a multiline method call.
spec/features/new_project_spec.rb
Outdated
@@ -273,7 +273,9 @@ def app_name | |||
expect(read_project_file(flashes_path)).to match(/\$flashes/m) | |||
|
|||
app_css = read_project_file(%w(app assets stylesheets application.scss)) | |||
expect(app_css).to match(/normalize-css.*bourbon.*neat.*base.*refills/m) | |||
expect(app_css).to match( | |||
/normalize\.css\/normalize\.css.*bourbon.*neat.*base.*refills/m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put a comma after the last parameter of a multiline method call.
Removes normalizes from rails assets
Great, thanks! Merging away. |
Just curious: what’s the advantage of installing via Yarn instead of Rails Assets? |
Mainly, I feel, that we're doing things the direction Rails is going and the growth of other |
No description provided.